diff options
Diffstat (limited to 'src/app/groups/[groupId]/stats/page.tsx')
| -rw-r--r-- | src/app/groups/[groupId]/stats/page.tsx | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/app/groups/[groupId]/stats/page.tsx b/src/app/groups/[groupId]/stats/page.tsx new file mode 100644 index 0000000..eb7fa9e --- /dev/null +++ b/src/app/groups/[groupId]/stats/page.tsx @@ -0,0 +1,49 @@ +import { cached } from '@/app/cached-functions' +import { Totals } from '@/app/groups/[groupId]/stats/totals' +import { + Card, + CardContent, + CardDescription, + CardHeader, + CardTitle, +} from '@/components/ui/card' +import { getGroupExpenses } from '@/lib/api' +import { getTotalGroupSpending } from '@/lib/totals' +import { Metadata } from 'next' +import { notFound } from 'next/navigation' + +export const metadata: Metadata = { + title: 'Totals', +} + +export default async function TotalsPage({ + params: { groupId }, +}: { + params: { groupId: string } +}) { + const group = await cached.getGroup(groupId) + if (!group) notFound() + + const expenses = await getGroupExpenses(groupId) + const totalGroupSpendings = getTotalGroupSpending(expenses) + + return ( + <> + <Card className="mb-4"> + <CardHeader> + <CardTitle>Totals</CardTitle> + <CardDescription> + Spending summary of the entire group. + </CardDescription> + </CardHeader> + <CardContent className="flex flex-col space-y-4"> + <Totals + group={group} + expenses={expenses} + totalGroupSpendings={totalGroupSpendings} + /> + </CardContent> + </Card> + </> + ) +} |
